home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1996 February: Tool Chest
/
Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso
/
Tool Chest
/
Games
/
Game Sample Code
/
ZAM 1.0a13
/
UtilCode
/
IsPressed.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-09-16
|
178 b
|
10 lines
|
[
TEXT/KAHL
]
#include "IsPressed.proto.h"
Boolean IsPressed(unsigned short k, unsigned char km[16])
/*
Checks if a given key is down by key Code
*/
{
return ((km[k>>3] >> (k & 7)) & 1);
}